home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic Source Code
/
Visual Basic Source Code.iso
/
vbsource
/
getfile
/
getfile.frm
< prev
next >
Wrap
Text File
|
1997-05-10
|
3KB
|
98 lines
VERSION 5.00
Begin VB.Form Leifens1
Appearance = 0 'Flat
BackColor = &H00C0C0C0&
Caption = "Leifen's FileConnector"
ClientHeight = 1560
ClientLeft = 1890
ClientTop = 1905
ClientWidth = 6495
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H80000008&
LinkTopic = "Form1"
PaletteMode = 1 'UseZOrder
ScaleHeight = 1560
ScaleWidth = 6495
Begin VB.ComboBox Combo1
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 1200
TabIndex = 2
Text = "avi"
Top = 120
Width = 5055
End
Begin VB.CommandButton Command1
Appearance = 0 'Flat
BackColor = &H80000005&
Caption = "Check"
Height = 375
Left = 120
TabIndex = 1
Top = 1080
Width = 6135
End
Begin VB.Label Label2
Caption = "Filetype"
BeginProperty Font
Name = "MS Sans Serif"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 120
TabIndex = 3
Top = 120
Width = 1095
End
Begin VB.Label Label1
BackColor = &H00FFFFFF&
BorderStyle = 1 'Fixed Single
Height = 375
Left = 120
TabIndex = 0
Top = 600
Width = 6135
End
End
Attribute VB_Name = "Leifens1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Label1.Caption = Getfiles()
End Sub
Private Sub Form_Load()
Combo1.AddItem "htm"
Combo1.AddItem "html"
Combo1.AddItem "txt"
Combo1.AddItem "wri"
Combo1.AddItem "doc"
'++++
End Sub